-
-
Notifications
You must be signed in to change notification settings - Fork 748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: prereleases #1653
base: compose-dev
Are you sure you want to change the base?
feat: prereleases #1653
Conversation
|
||
- name: Add hash to APK | ||
run: mv app/build/outputs/apk/release/app-release.apk revanced-manager-${{ env.COMMIT_HASH }}.apk | ||
run: ./gradlew assembleRelease --no-daemon -PnoProguard -Psuffix=${{ steps.get_commit_hash.outputs.hash }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is proguard disabled?
versionCode = 1 | ||
versionName = "0.0.1" | ||
versionName = project.version.toString() | ||
versionCode = (majorVersion.toInt() * 100000000) + (minorVersion.toInt() * 100000) + (patchVersion.toInt() * 100) + devVersion.toInt() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ReVanced Manager v2 will not use the versionCode calculator that v1 uses, it was a mistake
The right way is to bump by 1 for each build
Adds pre-release support to compose builds. Won't be used until compose manager reaches the
dev
branch.I have verified that it works here and here.